home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Sample INI file for ColdFusion Remoting.
- ;
- ; Place this file in the root directory of your CF installation.
- ; It must be named "cfremote.ini".
- ;
- ; !IMPORTANT! * All values (the strings on the right hand side of
- ; the equals sign) must be quoted using double
- ; quotes.
- ; * All info is case insensitive..
- ; * Lines beginning with a semicolon are treated as
- ; comments and are ignored.
- ;
-
- ; Use this to turn on/off the remoting capability.
- ;
- ; Valid values: Yes, No.
- ;
- REMOTING = "NO"
-
-
- ; Use this to specify the IP address of the remote computer running
- ; the CF Application Server.
- ;
- ; Valid values: a valid IP address, eg: 139.56.205.102.
- ;
- IP = "205.181.21.61"
-
-
- ; Use this to specify the port on that computer on which the remote
- ; CF Network Listener Module is listening.
- ;
- ; Valid values: a valid port number (integer).
- ;
- PORT = "1234"
-
- ; Use this to specify the document root of the local web server
- ; Filenames with this path prefix will be translated in to paths
- ; on the remote system using REMOTEPATH
- ;
- ; Valid values: a pathname. eg: /usr/local/apache/htdocs
- ;
- ;LOCALPATH = "/usr/local/apache/htdocs"
-
- ; Use this to specify the document root of the remote ColdFusion server
- ; This path prefix will be substituted for LOCALPATH in filenames
- ; before they are passed on to the ColdFusion Net Listener
- ;
- ; Valid values: a pathname. eg: c:\Inetpub\WWWRoot
- ;
- ;REMOTEPATH = "c:\Inetpub\WWWRoot"
-
- ; Use this to specify that the data sent between the machine running
- ; the web server and the machine running the CF Application Server
- ; be encrypted.
- ;
- ; Valid values: Yes, No.
- ;
- ENCRYPTION = "YES"
-
-
- ; Use this to specify the key used to encrypt the data.
- ;
- ; Valid values: any string of up to 127 ASCII chars.
- ;
- KEY = "dogface"
-
-
- ; Use this to have this INI file be deleted after it is read at
- ; startup. (This is a security feature as it keeps your key from
- ; being read by others.)
- ;
- ; Valid values: Yes, No.
- ;
- DELETE = "NO"
-
-
- ; Use this to write a message to the CF "webserver.log" confirming that
- ; remoting is active and what startup parameters (except the encryption
- ; key) were used.
- ;
- ; Valid values: Yes, No.
- ;
- MESSAGE = "YES"
-
-
- ; Use this to enable v4.n logging format in place of the v5.0 format
- ;
- ; Valid values: Yes, No.
- ;
- LOGFORMAT_4X_STYLE = "NO"
-
-
- ; Use this to redirect error processing to a custom page (location).
- ;
- ; The supported keys are :
- ;
- ; -----------------------------------------------------------------
- ; KEY VALUE DESCRIPTION
- ; -----------------------------------------------------------------
- ; ERROR_PIPE url Use for stub(webserver)/CFAS
- ; communication failures
- ;
- ; ------------------------------------------------------------------
- ;